-
enter image description hereI am in the process of making a fantasy sports website. The django out-of-the-box User equals a …
- 0 views
- 1 answers
- 0 votes
-
I’m trying to build an online judge for scoring solutions to coding problems. I know how the concept would work …
- 388 views
- 2 answers
- 0 votes
-
I have the following dictionaries: personale_dip={‘a’: [550.0], ‘b’: [157.65]} personale_dip_costo={‘a’: [1.0], ‘b’: [150.0]} personale_result={‘a’: 550.0, ‘b’: 23648.64} Personale_result has been …
- 390 views
- 3 answers
- 0 votes
-
Im stumped and need help on my function. I have two tables student and student information. Student information is all …
- 405 views
- 2 answers
- 0 votes
-
This question already has answers here: Does ID have to be unique in the whole page? (11 answers) Closed 5 …
- 352 views
- 1 answers
- 0 votes
-
Here is my forms.py file where addmanagerform function is defined from django import forms from bus_booking.models import Manager, Staff, Bus, …
- 362 views
- 1 answers
- 0 votes
-
- 354 views
- 1 answers
- 0 votes
-
I am having troubles passing a User(a foreign key) into a submitted form. Here is what the model looks like: …
- 387 views
- 1 answers
- 0 votes
-
I am trying to create a search functionality in Django, I have some data store in my Django table and …
- 360 views
- 1 answers
- 0 votes
-
I have the following django app structure: models.py class CodiceCommessa(models.Model): codice_commessa=models.ForeignKey(Informazioni_Generali, on_delete=models.CASCADE, null=True) class Informazioni_Generali(models.Model): codice_commessa= models.CharField(‘Codice’, unique=True, max_length=5) data_registrazione=models.DateField() …
- 370 views
- 1 answers
- 0 votes